From 294cce3c9d9c5576ed72bb053f01fc9a83b582f6 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Fri, 7 Dec 2007 00:41:54 +0000 Subject: [PATCH] Fix ioemu compile: serial.c was including a Linux-specific header. Signed-off-by: John Levon --- tools/ioemu/hw/serial.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tools/ioemu/hw/serial.c b/tools/ioemu/hw/serial.c index eefb9651b1..f66f0a1b3b 100644 --- a/tools/ioemu/hw/serial.c +++ b/tools/ioemu/hw/serial.c @@ -26,10 +26,16 @@ #include #include #include -#include //#define DEBUG_SERIAL +#define TIOCM_DTR 0x002 +#define TIOCM_RTS 0x004 +#define TIOCM_CTS 0x020 +#define TIOCM_CAR 0x040 +#define TIOCM_RI 0x080 +#define TIOCM_DSR 0x100 + #define UART_LCR_DLAB 0x80 /* Divisor latch access bit */ #define UART_IER_MSI 0x08 /* Enable Modem status interrupt */ -- 2.30.2